forum

Home / DeveloperSection / Forums / How useful is C#'s ?? operator?

How useful is C#'s ?? operator?

Anonymous User 1500 29-Jan-2014

I have been intrigued by the ?? operator, but have still been unable to use it. I usually think about it when I am doing something like:

var x = (someObject as someType).someMember;

If someObject is valid and someMember is null, I could do

var x = (someObject as someType).someMember ?? defaultValue;

but almost invariably I get into problems when someObject is null, and ?? doesn't help me make this any cleaner than doing the null check myself.

What uses have you guys found for ?? in practical situations?

c# c# 
Updated on 29-Jan-2014
I am a content writter !

Can you answer this question?


Answer

2 Answers

Liked By